home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
gnustuff
/
minix
/
libsrc~1.z
/
libsrc~1
/
rewind.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-12-28
|
194 b
|
13 lines
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
void rewind(fp)
register FILE *fp;
{
fflush(fp);
lseek(fp->_file, 0L, SEEK_SET);
fp->_flag &= ~(_IOEOF|_IOERR);
}